home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / ctmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  984 b   |  28 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef CTMainH
  3. #define CTMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TMainForm : public TForm
  11. {
  12. __published:    // IDE-managed Components 
  13.     TComboBox *DropDown;
  14.     TComboBox *DropDownList;
  15.     TComboBox *Simple;
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18.     TLabel *Label3;
  19.     void __fastcall FormCreate(TObject *Sender);
  20. private:        // User declarations
  21. public:         // User declarations
  22.     virtual __fastcall TMainForm(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TMainForm *MainForm;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.